home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-09-29 | 3.7 KB | 54 lines |
- package com.symantec.itools.swing;
-
- public class JChartResourceBundle
- extends java.util.ListResourceBundle
- {
- static public final String JCHART_LEGEND_KEY = "JCHART_LEGEND";
- static public final String JCHART_SERIES_KEY = "JCHART_SERIES";
-
- static public final String JCHART_GET_MODEL_CONNNECTION_KEY = "JCHART_GET_MODEL_CONNNECTION";
- static public final String JCHART_SET_MODEL_CONNNECTION_KEY = "JCHART_SET_MODEL_CONNNECTION";
- static public final String JCHART_GET_LEGEND_CONNNECTION_KEY = "JCHART_SET_LEGEND_CONNNECTION";
- static public final String JCHART_SET_LEGEND_CONNNECTION_KEY = "JCHART_SET_LEGEND_CONNNECTION";
- static public final String JCHART_GET_STYLE_CONNNECTION_KEY = "JCHART_GET_STYLE_CONNNECTION";
- static public final String JCHART_SET_STYLE_CONNNECTION_KEY = "JCHART_SET_STYLE_CONNNECTION";
- static public final String JCHART_GET_GRID_CONNNECTION_KEY = "JCHART_GET_GRID_CONNNECTION";
- static public final String JCHART_SET_GRID_CONNNECTION_KEY = "JCHART_SET_GRID_CONNNECTION";
- static public final String JCHART_GET_TITLE_CONNNECTION_KEY = "JCHART_SET_TITLE_CONNNECTION";
- static public final String JCHART_SET_TITLE_CONNNECTION_KEY = "JCHART_SET_TITLE_CONNNECTION";
- static public final String JCHART_GET_NUMYTICKS_CONNNECTION_KEY = "JCHART_GET_NUMYTICKS_CONNNECTION";
- static public final String JCHART_SET_NUMYTICKS_CONNNECTION_KEY = "JCHART_SET_NUMYTICKS_CONNNECTION";
- static public final String JCHART_GET_NUMSERIES_CONNNECTION_KEY = "JCHART_GET_NUMSERIES_CONNNECTION";
- static public final String JCHART_GET_YAXISMIN_CONNNECTION_KEY = "JCHART_GET_YAXISMIN_CONNNECTION";
- static public final String JCHART_SET_YAXISMIN_CONNNECTION_KEY = "JCHART_SET_YAXISMIN_CONNNECTION";
- static public final String JCHART_GET_YAXISMAX_CONNNECTION_KEY = "JCHART_GET_YAXISMAX_CONNNECTION";
- static public final String JCHART_SET_YAXISMAX_CONNNECTION_KEY = "JCHART_SET_YAXISMAX_CONNNECTION";
-
- private final Object[][] contents =
- {
- { JCHART_LEGEND_KEY, "Legend" },
- { JCHART_SERIES_KEY, "Series" },
- { JCHART_GET_MODEL_CONNNECTION_KEY, "Get the %class%'s model" },
- { JCHART_SET_MODEL_CONNNECTION_KEY, "Set the %class%'s model" },
- { JCHART_GET_LEGEND_CONNNECTION_KEY, "Get whether the %class%'s legend is visible" },
- { JCHART_SET_LEGEND_CONNNECTION_KEY, "Set whether the %class%'s legend is visible" },
- { JCHART_GET_STYLE_CONNNECTION_KEY, "Get the %class%'s graphing style" },
- { JCHART_SET_STYLE_CONNNECTION_KEY, "Set the %class%'s graphing style" },
- { JCHART_GET_GRID_CONNNECTION_KEY, "Get whether the %class%'s grid is visible" },
- { JCHART_SET_GRID_CONNNECTION_KEY, "Set whether the %class%'s grid is visible" },
- { JCHART_GET_TITLE_CONNNECTION_KEY, "Get the %class%'s title" },
- { JCHART_SET_TITLE_CONNNECTION_KEY, "Set the %class%'s title" },
- { JCHART_GET_NUMYTICKS_CONNNECTION_KEY, "Get the %class%'s number of y axis divisions" },
- { JCHART_SET_NUMYTICKS_CONNNECTION_KEY, "Set the %class%'s number of y axis divisions" },
- { JCHART_GET_NUMSERIES_CONNNECTION_KEY, "Get the %class%'s number of series" },
- { JCHART_SET_YAXISMIN_CONNNECTION_KEY, "Set the %class%'s origin for the y axis" },
- { JCHART_GET_YAXISMIN_CONNNECTION_KEY, "Get the %class%'s origin for the y axis" },
- { JCHART_SET_YAXISMAX_CONNNECTION_KEY, "Set the %class%'s maximum value for the y axis" },
- { JCHART_GET_YAXISMAX_CONNNECTION_KEY, "Get the %class%'s maximum value for the y axis" },
- };
-
- protected Object[][] getContents()
- {
- return contents;
- }
- }